home *** CD-ROM | disk | FTP | other *** search
- _root.level += 1;
- _root.prelevel += 1;
- if(_root.score == "0")
- {
- _root.reaction1a = _root.display.Seconds;
- _root.reaction1b = _root.display.Centiseconds;
- if(_root.reaction1a >= "01")
- {
- _root.reaction1a = "1";
- }
- else
- {
- _root.reaction1a = "0";
- }
- _root.scoreboard.reaction1 = "3.0";
- }
- else if(_root.score == "1")
- {
- _root.reaction2a = _root.display.Seconds;
- _root.reaction2b = _root.display.Centiseconds;
- if(_root.reaction2a >= "01")
- {
- _root.reaction2a = "1";
- }
- else
- {
- _root.reaction2a = "0";
- }
- _root.scoreboard.reaction2 = "3.0";
- }
- else if(_root.score == "2")
- {
- _root.reaction3a = _root.display.Seconds;
- _root.reaction3b = _root.display.Centiseconds;
- if(_root.reaction3a >= "01")
- {
- _root.reaction3a = "1";
- }
- else
- {
- _root.reaction3a = "0";
- }
- _root.scoreboard.reaction3 = "3.0";
- }
- else if(_root.score == "3")
- {
- _root.reaction4a = _root.display.Seconds;
- _root.reaction4b = _root.display.Centiseconds;
- if(_root.reaction4a >= "01")
- {
- _root.reaction4a = "1";
- }
- else
- {
- _root.reaction4a = "0";
- }
- _root.scoreboard.reaction4 = "3.0";
- }
- else if(_root.score == "4")
- {
- _root.reaction5a = _root.display.Seconds;
- _root.reaction5b = _root.display.Centiseconds;
- if(_root.reaction5a >= "01")
- {
- _root.reaction5a = "1";
- }
- else
- {
- _root.reaction5a = "0";
- }
- _root.scoreboard.reaction5 = "3.0";
- }
- _root.engine.play(1);
- _root.score += 1;
- if(_root.score >= "5")
- {
- _root.gotoAndPlay("endgame");
- }
- else
- {
- _root.green_light = "n";
- _root.engine.play(1);
- }
-